1   /*
2    * Licensed to Elasticsearch under one or more contributor
3    * license agreements. See the NOTICE file distributed with
4    * this work for additional information regarding copyright
5    * ownership. Elasticsearch licenses this file to you under
6    * the Apache License, Version 2.0 (the "License"); you may
7    * not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    *
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.elasticsearch.client;
21  
22  import org.elasticsearch.action.ActionFuture;
23  import org.elasticsearch.action.ActionListener;
24  import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
25  import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
26  import org.elasticsearch.action.admin.indices.alias.IndicesAliasesResponse;
27  import org.elasticsearch.action.admin.indices.alias.exists.AliasesExistRequestBuilder;
28  import org.elasticsearch.action.admin.indices.alias.exists.AliasesExistResponse;
29  import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
30  import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequestBuilder;
31  import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
32  import org.elasticsearch.action.admin.indices.analyze.AnalyzeRequest;
33  import org.elasticsearch.action.admin.indices.analyze.AnalyzeRequestBuilder;
34  import org.elasticsearch.action.admin.indices.analyze.AnalyzeResponse;
35  import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
36  import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequestBuilder;
37  import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
38  import org.elasticsearch.action.admin.indices.close.CloseIndexRequest;
39  import org.elasticsearch.action.admin.indices.close.CloseIndexRequestBuilder;
40  import org.elasticsearch.action.admin.indices.close.CloseIndexResponse;
41  import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
42  import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
43  import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
44  import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
45  import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequestBuilder;
46  import org.elasticsearch.action.admin.indices.delete.DeleteIndexResponse;
47  import org.elasticsearch.action.admin.indices.exists.indices.IndicesExistsRequest;
48  import org.elasticsearch.action.admin.indices.exists.indices.IndicesExistsRequestBuilder;
49  import org.elasticsearch.action.admin.indices.exists.indices.IndicesExistsResponse;
50  import org.elasticsearch.action.admin.indices.exists.types.TypesExistsRequest;
51  import org.elasticsearch.action.admin.indices.exists.types.TypesExistsRequestBuilder;
52  import org.elasticsearch.action.admin.indices.exists.types.TypesExistsResponse;
53  import org.elasticsearch.action.admin.indices.flush.FlushRequest;
54  import org.elasticsearch.action.admin.indices.flush.FlushRequestBuilder;
55  import org.elasticsearch.action.admin.indices.flush.FlushResponse;
56  import org.elasticsearch.action.admin.indices.get.GetIndexRequest;
57  import org.elasticsearch.action.admin.indices.get.GetIndexRequestBuilder;
58  import org.elasticsearch.action.admin.indices.get.GetIndexResponse;
59  import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingRequest;
60  import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingRequestBuilder;
61  import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingResponse;
62  import org.elasticsearch.action.admin.indices.mapping.get.*;
63  import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
64  import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequestBuilder;
65  import org.elasticsearch.action.admin.indices.mapping.put.PutMappingResponse;
66  import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
67  import org.elasticsearch.action.admin.indices.open.OpenIndexRequestBuilder;
68  import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
69  import org.elasticsearch.action.admin.indices.optimize.OptimizeRequest;
70  import org.elasticsearch.action.admin.indices.optimize.OptimizeRequestBuilder;
71  import org.elasticsearch.action.admin.indices.optimize.OptimizeResponse;
72  import org.elasticsearch.action.admin.indices.recovery.RecoveryRequest;
73  import org.elasticsearch.action.admin.indices.recovery.RecoveryRequestBuilder;
74  import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
75  import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
76  import org.elasticsearch.action.admin.indices.refresh.RefreshRequestBuilder;
77  import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
78  import org.elasticsearch.action.admin.indices.segments.IndicesSegmentResponse;
79  import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsRequest;
80  import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsRequestBuilder;
81  import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
82  import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequestBuilder;
83  import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
84  import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
85  import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequestBuilder;
86  import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsResponse;
87  import org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest;
88  import org.elasticsearch.action.admin.indices.stats.IndicesStatsRequestBuilder;
89  import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
90  import org.elasticsearch.action.admin.indices.status.IndicesStatusRequest;
91  import org.elasticsearch.action.admin.indices.status.IndicesStatusRequestBuilder;
92  import org.elasticsearch.action.admin.indices.status.IndicesStatusResponse;
93  import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
94  import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequestBuilder;
95  import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateResponse;
96  import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesRequest;
97  import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesRequestBuilder;
98  import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
99  import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest;
100 import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequestBuilder;
101 import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateResponse;
102 import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
103 import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequestBuilder;
104 import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryResponse;
105 import org.elasticsearch.action.admin.indices.warmer.delete.DeleteWarmerRequest;
106 import org.elasticsearch.action.admin.indices.warmer.delete.DeleteWarmerRequestBuilder;
107 import org.elasticsearch.action.admin.indices.warmer.delete.DeleteWarmerResponse;
108 import org.elasticsearch.action.admin.indices.warmer.get.GetWarmersRequest;
109 import org.elasticsearch.action.admin.indices.warmer.get.GetWarmersRequestBuilder;
110 import org.elasticsearch.action.admin.indices.warmer.get.GetWarmersResponse;
111 import org.elasticsearch.action.admin.indices.warmer.put.PutWarmerRequest;
112 import org.elasticsearch.action.admin.indices.warmer.put.PutWarmerRequestBuilder;
113 import org.elasticsearch.action.admin.indices.warmer.put.PutWarmerResponse;
114 import org.elasticsearch.common.Nullable;
115 
116 /**
117  * Administrative actions/operations against indices.
118  *
119  * @see AdminClient#indices()
120  */
121 public interface IndicesAdminClient extends ElasticsearchClient<IndicesAdminClient> {
122 
123 
124     /**
125      * Indices Exists.
126      *
127      * @param request The indices exists request
128      * @return The result future
129      * @see Requests#indicesExistsRequest(String...)
130      */
131     ActionFuture<IndicesExistsResponse> exists(IndicesExistsRequest request);
132 
133     /**
134      * The status of one or more indices.
135      *
136      * @param request  The indices status request
137      * @param listener A listener to be notified with a result
138      * @see Requests#indicesExistsRequest(String...)
139      */
140     void exists(IndicesExistsRequest request, ActionListener<IndicesExistsResponse> listener);
141 
142     /**
143      * Indices exists.
144      */
145     IndicesExistsRequestBuilder prepareExists(String... indices);
146 
147 
148     /**
149      * Types Exists.
150      *
151      * @param request The types exists request
152      * @return The result future
153      */
154     ActionFuture<TypesExistsResponse> typesExists(TypesExistsRequest request);
155 
156     /**
157      * Types exists
158      *
159      * @param request  The types exists
160      * @param listener A listener to be notified with a result
161      */
162     void typesExists(TypesExistsRequest request, ActionListener<TypesExistsResponse> listener);
163 
164     /**
165      * Indices exists.
166      */
167     TypesExistsRequestBuilder prepareTypesExists(String... index);
168 
169     /**
170      * Indices stats.
171      */
172     ActionFuture<IndicesStatsResponse> stats(IndicesStatsRequest request);
173 
174     /**
175      * Indices stats.
176      */
177     void stats(IndicesStatsRequest request, ActionListener<IndicesStatsResponse> listener);
178 
179     /**
180      * Indices stats.
181      */
182     IndicesStatsRequestBuilder prepareStats(String... indices);
183 
184     /**
185      * Indices recoveries
186      */
187     ActionFuture<RecoveryResponse> recoveries(RecoveryRequest request);
188 
189     /**
190      *Indices recoveries
191      */
192     void recoveries(RecoveryRequest request, ActionListener<RecoveryResponse> listener);
193 
194     /**
195      * Indices recoveries
196      */
197     RecoveryRequestBuilder prepareRecoveries(String... indices);
198 
199     /**
200      * The status of one or more indices. Use the recovery API instead
201      *
202      * @param request The indices status request
203      * @return The result future
204      * @see Requests#indicesStatusRequest(String...)
205      */
206     @Deprecated
207     ActionFuture<IndicesStatusResponse> status(IndicesStatusRequest request);
208 
209     /**
210      * The status of one or more indices. Use the recovery API instead.
211      *
212      * @param request  The indices status request
213      * @param listener A listener to be notified with a result
214      * @see Requests#indicesStatusRequest(String...)
215      */
216     @Deprecated
217     void status(IndicesStatusRequest request, ActionListener<IndicesStatusResponse> listener);
218 
219     /**
220      * The status of one or more indices. Use the recovery API instead
221      */
222     @Deprecated
223     IndicesStatusRequestBuilder prepareStatus(String... indices);
224 
225     /**
226      * The segments of one or more indices.
227      *
228      * @param request The indices segments request
229      * @return The result future
230      * @see Requests#indicesSegmentsRequest(String...)
231      */
232     ActionFuture<IndicesSegmentResponse> segments(IndicesSegmentsRequest request);
233 
234     /**
235      * The segments of one or more indices.
236      *
237      * @param request  The indices segments request
238      * @param listener A listener to be notified with a result
239      * @see Requests#indicesSegmentsRequest(String...)
240      */
241     void segments(IndicesSegmentsRequest request, ActionListener<IndicesSegmentResponse> listener);
242 
243     /**
244      * The segments of one or more indices.
245      */
246     IndicesSegmentsRequestBuilder prepareSegments(String... indices);
247 
248     /**
249      * Creates an index using an explicit request allowing to specify the settings of the index.
250      *
251      * @param request The create index request
252      * @return The result future
253      * @see org.elasticsearch.client.Requests#createIndexRequest(String)
254      */
255     ActionFuture<CreateIndexResponse> create(CreateIndexRequest request);
256 
257     /**
258      * Creates an index using an explicit request allowing to specify the settings of the index.
259      *
260      * @param request  The create index request
261      * @param listener A listener to be notified with a result
262      * @see org.elasticsearch.client.Requests#createIndexRequest(String)
263      */
264     void create(CreateIndexRequest request, ActionListener<CreateIndexResponse> listener);
265 
266     /**
267      * Creates an index using an explicit request allowing to specify the settings of the index.
268      *
269      * @param index The index name to create
270      */
271     CreateIndexRequestBuilder prepareCreate(String index);
272 
273     /**
274      * Deletes an index based on the index name.
275      *
276      * @param request The delete index request
277      * @return The result future
278      * @see org.elasticsearch.client.Requests#deleteIndexRequest(String)
279      */
280     ActionFuture<DeleteIndexResponse> delete(DeleteIndexRequest request);
281 
282     /**
283      * Deletes an index based on the index name.
284      *
285      * @param request  The delete index request
286      * @param listener A listener to be notified with a result
287      * @see org.elasticsearch.client.Requests#deleteIndexRequest(String)
288      */
289     void delete(DeleteIndexRequest request, ActionListener<DeleteIndexResponse> listener);
290 
291     /**
292      * Deletes an index based on the index name.
293      *
294      * @param indices The indices to delete. Use "_all" to delete all indices.
295      */
296     DeleteIndexRequestBuilder prepareDelete(String... indices);
297 
298     /**
299      * Closes an index based on the index name.
300      *
301      * @param request The close index request
302      * @return The result future
303      * @see org.elasticsearch.client.Requests#closeIndexRequest(String)
304      */
305     ActionFuture<CloseIndexResponse> close(CloseIndexRequest request);
306 
307     /**
308      * Closes an index based on the index name.
309      *
310      * @param request  The close index request
311      * @param listener A listener to be notified with a result
312      * @see org.elasticsearch.client.Requests#closeIndexRequest(String)
313      */
314     void close(CloseIndexRequest request, ActionListener<CloseIndexResponse> listener);
315 
316     /**
317      * Closes one or more indices based on their index name.
318      *
319      * @param indices The name of the indices to close
320      */
321     CloseIndexRequestBuilder prepareClose(String... indices);
322 
323     /**
324      * Open an index based on the index name.
325      *
326      * @param request The close index request
327      * @return The result future
328      * @see org.elasticsearch.client.Requests#openIndexRequest(String)
329      */
330     ActionFuture<OpenIndexResponse> open(OpenIndexRequest request);
331 
332     /**
333      * Open an index based on the index name.
334      *
335      * @param request  The close index request
336      * @param listener A listener to be notified with a result
337      * @see org.elasticsearch.client.Requests#openIndexRequest(String)
338      */
339     void open(OpenIndexRequest request, ActionListener<OpenIndexResponse> listener);
340 
341     /**
342      * Opens one or more indices based on their index name.
343      *
344      * @param indices The name of the indices to close
345      */
346     OpenIndexRequestBuilder prepareOpen(String... indices);
347 
348     /**
349      * Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).
350      *
351      * @param request The refresh request
352      * @return The result future
353      * @see org.elasticsearch.client.Requests#refreshRequest(String...)
354      */
355     ActionFuture<RefreshResponse> refresh(RefreshRequest request);
356 
357     /**
358      * Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).
359      *
360      * @param request  The refresh request
361      * @param listener A listener to be notified with a result
362      * @see org.elasticsearch.client.Requests#refreshRequest(String...)
363      */
364     void refresh(RefreshRequest request, ActionListener<RefreshResponse> listener);
365 
366     /**
367      * Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).
368      */
369     RefreshRequestBuilder prepareRefresh(String... indices);
370 
371     /**
372      * Explicitly flush one or more indices (releasing memory from the node).
373      *
374      * @param request The flush request
375      * @return A result future
376      * @see org.elasticsearch.client.Requests#flushRequest(String...)
377      */
378     ActionFuture<FlushResponse> flush(FlushRequest request);
379 
380     /**
381      * Explicitly flush one or more indices (releasing memory from the node).
382      *
383      * @param request  The flush request
384      * @param listener A listener to be notified with a result
385      * @see org.elasticsearch.client.Requests#flushRequest(String...)
386      */
387     void flush(FlushRequest request, ActionListener<FlushResponse> listener);
388 
389     /**
390      * Explicitly flush one or more indices (releasing memory from the node).
391      */
392     FlushRequestBuilder prepareFlush(String... indices);
393 
394     /**
395      * Explicitly optimize one or more indices into a the number of segments.
396      *
397      * @param request The optimize request
398      * @return A result future
399      * @see org.elasticsearch.client.Requests#optimizeRequest(String...)
400      */
401     ActionFuture<OptimizeResponse> optimize(OptimizeRequest request);
402 
403     /**
404      * Explicitly optimize one or more indices into a the number of segments.
405      *
406      * @param request  The optimize request
407      * @param listener A listener to be notified with a result
408      * @see org.elasticsearch.client.Requests#optimizeRequest(String...)
409      */
410     void optimize(OptimizeRequest request, ActionListener<OptimizeResponse> listener);
411 
412     /**
413      * Explicitly optimize one or more indices into a the number of segments.
414      */
415     OptimizeRequestBuilder prepareOptimize(String... indices);
416 
417     /**
418      * Get the complete mappings of one or more types
419      */
420     void getMappings(GetMappingsRequest request, ActionListener<GetMappingsResponse> listener);
421 
422     /**
423      * Get the complete mappings of one or more types
424      */
425     ActionFuture<GetMappingsResponse> getMappings(GetMappingsRequest request);
426 
427     /**
428      * Get the complete mappings of one or more types
429      */
430     GetMappingsRequestBuilder prepareGetMappings(String... indices);
431 
432     /**
433      * Get the mappings of specific fields
434      */
435     void getFieldMappings(GetFieldMappingsRequest request, ActionListener<GetFieldMappingsResponse> listener);
436 
437     /**
438      * Get the mappings of specific fields
439      */
440     GetFieldMappingsRequestBuilder prepareGetFieldMappings(String... indices);
441 
442     /**
443      * Get the mappings of specific fields
444      */
445     ActionFuture<GetFieldMappingsResponse> getFieldMappings(GetFieldMappingsRequest request);
446 
447     /**
448      * Add mapping definition for a type into one or more indices.
449      *
450      * @param request The create mapping request
451      * @return A result future
452      * @see org.elasticsearch.client.Requests#putMappingRequest(String...)
453      */
454     ActionFuture<PutMappingResponse> putMapping(PutMappingRequest request);
455 
456     /**
457      * Add mapping definition for a type into one or more indices.
458      *
459      * @param request  The create mapping request
460      * @param listener A listener to be notified with a result
461      * @see org.elasticsearch.client.Requests#putMappingRequest(String...)
462      */
463     void putMapping(PutMappingRequest request, ActionListener<PutMappingResponse> listener);
464 
465     /**
466      * Add mapping definition for a type into one or more indices.
467      */
468     PutMappingRequestBuilder preparePutMapping(String... indices);
469 
470     /**
471      * Deletes mapping (and all its data) from one or more indices.
472      *
473      * @param request The delete mapping request
474      * @return A result future
475      * @see org.elasticsearch.client.Requests#deleteMappingRequest(String...)
476      */
477     ActionFuture<DeleteMappingResponse> deleteMapping(DeleteMappingRequest request);
478 
479     /**
480      * Deletes mapping definition for a type into one or more indices.
481      *
482      * @param request  The delete mapping request
483      * @param listener A listener to be notified with a result
484      * @see org.elasticsearch.client.Requests#deleteMappingRequest(String...)
485      */
486     void deleteMapping(DeleteMappingRequest request, ActionListener<DeleteMappingResponse> listener);
487 
488     /**
489      * Deletes mapping definition for a type into one or more indices.
490      */
491     DeleteMappingRequestBuilder prepareDeleteMapping(String... indices);
492 
493     /**
494      * Allows to add/remove aliases from indices.
495      *
496      * @param request The index aliases request
497      * @return The result future
498      * @see Requests#indexAliasesRequest()
499      */
500     ActionFuture<IndicesAliasesResponse> aliases(IndicesAliasesRequest request);
501 
502     /**
503      * Allows to add/remove aliases from indices.
504      *
505      * @param request  The index aliases request
506      * @param listener A listener to be notified with a result
507      * @see Requests#indexAliasesRequest()
508      */
509     void aliases(IndicesAliasesRequest request, ActionListener<IndicesAliasesResponse> listener);
510 
511     /**
512      * Allows to add/remove aliases from indices.
513      */
514     IndicesAliasesRequestBuilder prepareAliases();
515 
516     /**
517      * Get specific index aliases that exists in particular indices and / or by name.
518      *
519      * @param request The result future
520      */
521     ActionFuture<GetAliasesResponse> getAliases(GetAliasesRequest request);
522 
523     /**
524      * Get specific index aliases that exists in particular indices and / or by name.
525      *
526      * @param request  The index aliases request
527      * @param listener A listener to be notified with a result
528      */
529     void getAliases(GetAliasesRequest request, ActionListener<GetAliasesResponse> listener);
530 
531     /**
532      * Get specific index aliases that exists in particular indices and / or by name.
533      */
534     GetAliasesRequestBuilder prepareGetAliases(String... aliases);
535 
536     /**
537      * Allows to check to existence of aliases from indices.
538      */
539     AliasesExistRequestBuilder prepareAliasesExist(String... aliases);
540 
541     /**
542      * Check to existence of index aliases.
543      *
544      * @param request The result future
545      */
546     ActionFuture<AliasesExistResponse> aliasesExist(GetAliasesRequest request);
547 
548     /**
549      * Check the existence of specified index aliases.
550      *
551      * @param request  The index aliases request
552      * @param listener A listener to be notified with a result
553      */
554     void aliasesExist(GetAliasesRequest request, ActionListener<AliasesExistResponse> listener);
555 
556     /**
557      * Get index metadata for particular indices.
558      *
559      * @param request The result future
560      */
561     ActionFuture<GetIndexResponse> getIndex(GetIndexRequest request);
562 
563     /**
564      * Get index metadata for particular indices.
565      *
566      * @param request  The index aliases request
567      * @param listener A listener to be notified with a result
568      */
569     void getIndex(GetIndexRequest request, ActionListener<GetIndexResponse> listener);
570 
571     /**
572      * Get index metadata for particular indices.
573      */
574     GetIndexRequestBuilder prepareGetIndex();
575 
576     /**
577      * Clear indices cache.
578      *
579      * @param request The clear indices cache request
580      * @return The result future
581      * @see Requests#clearIndicesCacheRequest(String...)
582      */
583     ActionFuture<ClearIndicesCacheResponse> clearCache(ClearIndicesCacheRequest request);
584 
585     /**
586      * Clear indices cache.
587      *
588      * @param request  The clear indices cache request
589      * @param listener A listener to be notified with a result
590      * @see Requests#clearIndicesCacheRequest(String...)
591      */
592     void clearCache(ClearIndicesCacheRequest request, ActionListener<ClearIndicesCacheResponse> listener);
593 
594     /**
595      * Clear indices cache.
596      */
597     ClearIndicesCacheRequestBuilder prepareClearCache(String... indices);
598 
599     /**
600      * Updates settings of one or more indices.
601      *
602      * @param request the update settings request
603      * @return The result future
604      */
605     ActionFuture<UpdateSettingsResponse> updateSettings(UpdateSettingsRequest request);
606 
607     /**
608      * Updates settings of one or more indices.
609      *
610      * @param request  the update settings request
611      * @param listener A listener to be notified with the response
612      */
613     void updateSettings(UpdateSettingsRequest request, ActionListener<UpdateSettingsResponse> listener);
614 
615     /**
616      * Update indices settings.
617      */
618     UpdateSettingsRequestBuilder prepareUpdateSettings(String... indices);
619 
620     /**
621      * Analyze text under the provided index.
622      */
623     ActionFuture<AnalyzeResponse> analyze(AnalyzeRequest request);
624 
625     /**
626      * Analyze text under the provided index.
627      */
628     void analyze(AnalyzeRequest request, ActionListener<AnalyzeResponse> listener);
629 
630     /**
631      * Analyze text under the provided index.
632      *
633      * @param index The index name
634      * @param text  The text to analyze
635      */
636     AnalyzeRequestBuilder prepareAnalyze(@Nullable String index, String text);
637 
638     /**
639      * Analyze text.
640      *
641      * @param text The text to analyze
642      */
643     AnalyzeRequestBuilder prepareAnalyze(String text);
644 
645     /**
646      * Puts an index template.
647      */
648     ActionFuture<PutIndexTemplateResponse> putTemplate(PutIndexTemplateRequest request);
649 
650     /**
651      * Puts an index template.
652      */
653     void putTemplate(PutIndexTemplateRequest request, ActionListener<PutIndexTemplateResponse> listener);
654 
655     /**
656      * Puts an index template.
657      *
658      * @param name The name of the template.
659      */
660     PutIndexTemplateRequestBuilder preparePutTemplate(String name);
661 
662     /**
663      * Deletes index template.
664      */
665     ActionFuture<DeleteIndexTemplateResponse> deleteTemplate(DeleteIndexTemplateRequest request);
666 
667     /**
668      * Deletes an index template.
669      */
670     void deleteTemplate(DeleteIndexTemplateRequest request, ActionListener<DeleteIndexTemplateResponse> listener);
671 
672     /**
673      * Deletes an index template.
674      *
675      * @param name The name of the template.
676      */
677     DeleteIndexTemplateRequestBuilder prepareDeleteTemplate(String name);
678 
679     /**
680      * Gets index template.
681      */
682     ActionFuture<GetIndexTemplatesResponse> getTemplates(GetIndexTemplatesRequest request);
683 
684     /**
685      * Gets an index template.
686      */
687     void getTemplates(GetIndexTemplatesRequest request, ActionListener<GetIndexTemplatesResponse> listener);
688 
689     /**
690      * Gets an index template (optional).
691      */
692     GetIndexTemplatesRequestBuilder prepareGetTemplates(String... name);
693 
694     /**
695      * Validate a query for correctness.
696      *
697      * @param request The count request
698      * @return The result future
699      * @see Requests#countRequest(String...)
700      */
701     ActionFuture<ValidateQueryResponse> validateQuery(ValidateQueryRequest request);
702 
703     /**
704      * Validate a query for correctness.
705      *
706      * @param request  The count request
707      * @param listener A listener to be notified of the result
708      * @see Requests#countRequest(String...)
709      */
710     void validateQuery(ValidateQueryRequest request, ActionListener<ValidateQueryResponse> listener);
711 
712     /**
713      * Validate a query for correctness.
714      */
715     ValidateQueryRequestBuilder prepareValidateQuery(String... indices);
716 
717     /**
718      * Puts an index search warmer to be applies when applicable.
719      */
720     ActionFuture<PutWarmerResponse> putWarmer(PutWarmerRequest request);
721 
722     /**
723      * Puts an index search warmer to be applies when applicable.
724      */
725     void putWarmer(PutWarmerRequest request, ActionListener<PutWarmerResponse> listener);
726 
727     /**
728      * Puts an index search warmer to be applies when applicable.
729      */
730     PutWarmerRequestBuilder preparePutWarmer(String name);
731 
732     /**
733      * Deletes an index warmer.
734      */
735     ActionFuture<DeleteWarmerResponse> deleteWarmer(DeleteWarmerRequest request);
736 
737     /**
738      * Deletes an index warmer.
739      */
740     void deleteWarmer(DeleteWarmerRequest request, ActionListener<DeleteWarmerResponse> listener);
741 
742     /**
743      * Deletes an index warmer.
744      */
745     DeleteWarmerRequestBuilder prepareDeleteWarmer();
746 
747     /**
748      * Returns a map of index warmers for the given get request.
749      */
750     void getWarmers(GetWarmersRequest request, ActionListener<GetWarmersResponse> listener);
751 
752     /**
753      * Returns a map of index warmers for the given get request.
754      */
755     ActionFuture<GetWarmersResponse> getWarmers(GetWarmersRequest request);
756 
757     /**
758      * Returns a new builder to fetch index warmer metadata for the given indices.
759      */
760     GetWarmersRequestBuilder prepareGetWarmers(String... indices);
761 
762     /**
763      * Executed a per index settings get request and returns the settings for the indices specified.
764      * Note: this is a per index request and will not include settings that are set on the cluster
765      * level. This request is not exhaustive, it will not return default values for setting.
766      */
767     void getSettings(GetSettingsRequest request, ActionListener<GetSettingsResponse> listener);
768 
769     /**
770      * Executed a per index settings get request.
771      * @see #getSettings(org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest)
772      */
773     ActionFuture<GetSettingsResponse> getSettings(GetSettingsRequest request);
774 
775     /**
776      * Returns a builder for a per index settings get request.
777      * @param indices the indices to fetch the setting for.
778      * @see #getSettings(org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest)
779      */
780     GetSettingsRequestBuilder prepareGetSettings(String... indices);
781 }